How to // Comment
Correct MySQL error 1045 // Corriger l'erreur MySQL 1045

Wamp

[Wamp] Correct MySQL error 1045



0. Edit your "/etc/mysql/mysql.conf.d/mysqld.cnf" file
  • [mysqld]
  • bind-address = 0.0.0.0
1. Connect yourself with SSH
2. Connect yourself on your MySQL
  • mysql -u axiome -pconcept mysql
3. Grant access from any IP to your user
  • GRANT ALL PRIVILEGES ON *.* TO 'axiome'@'%' IDENTIFIED BY 'concept' with grant option;
4. Update your rights
  • FLUSH PRIVILEGES;

-> If needed, restart your MySQL service



How to

[How to] Corriger l'erreur MySQL 1045



0. Modifiez votre fichier "/etc/mysql/mysql.conf.d/mysqld.cnf"
  • [mysqld]
  • bind-address = 0.0.0.0
1. Connectez-vous avec SSH
2. Connectez-vous sur votre MySQL
  • mysql -u axiome -pconcept mysql
3. Accordez l'accès à partir de n'importe quelle adresse IP à votre utilisateur
  • GRANT ALL PRIVILEGES ON *.* TO 'axiome'@'%' IDENTIFIED BY 'concept' with grant option;
4. Mettez à jour vos droits
  • FLUSH PRIVILEGES;
  • -> Si besoin, redémarrez votre service MySQL